projects
/
emacs.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
ea3d955
)
* fileio.c (Fset_visited_file_modtime): We're only passing two
author
Jim Blandy
<jimb@redhat.com>
Sat, 19 Jun 1993 01:04:50 +0000
(
01:04
+0000)
committer
Jim Blandy
<jimb@redhat.com>
Sat, 19 Jun 1993 01:04:50 +0000
(
01:04
+0000)
arguments to the file name handler; use call2, not call3.
src/fileio.c
patch
|
blob
|
history
diff --git
a/src/fileio.c
b/src/fileio.c
index d21007a7ce84462a91fce249f7b48ea42f5199e4..41838f0937ec4077ba41c42affcfac676bf45194 100644
(file)
--- a/
src/fileio.c
+++ b/
src/fileio.c
@@
-2941,7
+2941,7
@@
An argument specifies the modification time value to use\n\
handler = Ffind_file_name_handler (filename);
if (!NILP (handler))
/* The handler can find the file name the same way we did. */
- return call
3
(handler, Qset_visited_file_modtime, Qnil);
+ return call
2
(handler, Qset_visited_file_modtime, Qnil);
else if (stat (XSTRING (filename)->data, &st) >= 0)
current_buffer->modtime = st.st_mtime;
}